TypeScript自带的类型推论

5/24/2024 ts

# 1. typeScript 自带的类型推论 【了解】

TS 为了帮助开发者 更友好 更快速的开发项目的 准备的功能

TS中 有一些常用的 数据类型 是可以省略 定义类型 语句的,TS中自带推论

let a=100;
let b = 'xxxx'
function sum(a:number){
    return 1000
}
sum(1100)
1
2
3
4
5
6
let arr = [100,'xxxxxxx']
arr.push(10000)
console.log(arr[1].length);  //推论失效  本来是字符串的数据 缺没有了length

1
2
3
4